home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / sfilter2.c < prev    next >
C/C++ Source or Header  |  1997-04-09  |  6KB  |  280 lines

  1. /* Copyright (C) 1991, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* sfilter2.c */
  20. /* Simple Level 2 filters */
  21. #include "stdio_.h"    /* includes std.h */
  22. #include "memory_.h"
  23. #include "strimpl.h"
  24. #include "sa85x.h"
  25. #include "sbtx.h"
  26. #include "scanchar.h"
  27.  
  28. /* ------ ASCII85Encode ------ */
  29.  
  30. /* Process a buffer */
  31. private int
  32. s_A85E_process(stream_state *st, stream_cursor_read *pr,
  33.   stream_cursor_write *pw, bool last)
  34. {    register const byte *p = pr->ptr;
  35.     register byte *q = pw->ptr;
  36.     const byte *rlimit = pr->limit;
  37.     byte *wlimit = pw->limit;
  38.     int status = 0;
  39.     int count;
  40.     for ( ; (count = rlimit - p) >= 4; p += 4 )
  41.     {    ulong word =
  42.             ((ulong)(((uint)p[1] << 8) + p[2]) << 16) +
  43.             (((uint)p[3] << 8) + p[4]);
  44.         if ( word == 0 )
  45.         {    if ( wlimit - q < 2 )
  46.             {    status = 1;
  47.                 break;
  48.             }
  49.             *++q = 'z';
  50.         }
  51.         else
  52.         {    ulong v4 = word / 85;    /* max 85^4 */
  53.             ulong v3 = v4 / 85;    /* max 85^3 */
  54.             uint v2 = v3 / 85;    /* max 85^2 */
  55.             uint v1 = v2 / 85;    /* max 85 */
  56.  
  57.             if ( wlimit - q < 6 )
  58.             {    status = 1;
  59.                 break;
  60.             }
  61.             q[1] = (byte)v1 + '!';
  62.             q[2] = (byte)(v2 - v1 * 85) + '!';
  63.             q[3] = (byte)((uint)v3 - v2 * 85) + '!';
  64.             q[4] = (byte)((uint)v4 - (uint)v3 * 85) + '!';
  65.             q[5] = (byte)((uint)word - (uint)v4 * 85) + '!';
  66.             q += 5;
  67.         }
  68.         if ( !(count & 60) )
  69.             *++q = '\n';
  70.     }
  71.     /* Check for final partial word. */
  72.     if ( last && status == 0 && count < 4 )
  73.     {    if ( wlimit - q < (count == 0 ? 2 : count + 3) )
  74.             status = 1;
  75.         else
  76.         {    ulong word = 0;
  77.             ulong divisor = 85L*85*85*85;
  78.             switch ( count )
  79.             {
  80.             case 3:
  81.                 word += (uint)p[3] << 8;
  82.             case 2:
  83.                 word += (ulong)p[2] << 16;
  84.             case 1:
  85.                 word += (ulong)p[1] << 24;
  86.                 p += count;
  87.                 while ( count-- >= 0 )
  88.                 {    ulong v = word / divisor;  /* actually only a byte */
  89.                     *++q = (byte)v + '!';
  90.                     word -= v * divisor;
  91.                     divisor /= 85;
  92.                 }
  93.             /*case 0:*/
  94.             }
  95.             *++q = '~';
  96.             *++q = '>';
  97.         }
  98.     }
  99.     pr->ptr = p;
  100.     pw->ptr = q;
  101.     return status;
  102. }
  103.  
  104. /* Stream template */
  105. const stream_template s_A85E_template =
  106. {    &st_stream_state, NULL, s_A85E_process, 4, 6
  107. };
  108.  
  109. /* ------ ASCII85Decode ------ */
  110.  
  111. private_st_A85D_state();
  112.  
  113. #define ss ((stream_A85D_state *)st)
  114.  
  115. /* Initialize the state */
  116. private int
  117. s_A85D_init(stream_state *st)
  118. {    return s_A85D_init_inline(ss);
  119. }
  120.  
  121. /* Process a buffer */
  122. private int a85d_finish(P3(int, ulong, stream_cursor_write *));
  123. private int
  124. s_A85D_process(stream_state *st, stream_cursor_read *pr,
  125.   stream_cursor_write *pw, bool last)
  126. {    register const byte *p = pr->ptr;
  127.     register byte *q = pw->ptr;
  128.     const byte *rlimit = pr->limit;
  129.     byte *wlimit = pw->limit;
  130.     int ccount = ss->odd;
  131.     ulong word = ss->word;
  132.     int status = 0;
  133.  
  134.     while ( p < rlimit )
  135.     {    int ch = *++p;
  136.         uint ccode = ch - '!';
  137.         if ( ccode < 85 )        /* catches ch < '!' as well */
  138.         {    if ( wlimit - q < 4 )
  139.             {    p--;
  140.                 status = 1;
  141.                 break;
  142.             }
  143.             word = word * 85 + ccode;
  144.             if ( ++ccount == 5 )
  145.             {    q[1] = (byte)(word >> 24);
  146.                 q[2] = (byte)(word >> 16);
  147.                 q[3] = (byte)((uint)word >> 8);
  148.                 q[4] = (byte)word;
  149.                 q += 4;
  150.                 word = 0;
  151.                 ccount = 0;
  152.             }
  153.         }
  154.         else if ( ch == 'z' && ccount == 0 )
  155.         {    if ( wlimit - q < 4 )
  156.             {    p--;
  157.                 status = 1;
  158.                 break;
  159.             }
  160.             q[1] = q[2] = q[3] = q[4] = 0,
  161.             q += 4;
  162.         }
  163.         else if ( scan_char_decoder[ch] == ctype_space )
  164.             ;
  165.         else if ( ch == '~' )
  166.         {    /* Handle odd bytes. */
  167.             if ( p == rlimit )
  168.             {    if ( last )
  169.                   status = ERRC;
  170.                 else
  171.                   p--;
  172.                 break;
  173.             }
  174.             if ( (int)(wlimit - q) < ccount - 1 )
  175.             {    status = 1;
  176.                 p--;
  177.                 break;
  178.             }
  179.             if ( *++p != '>' )
  180.             {    status = ERRC;
  181.                 break;
  182.             }
  183.             pw->ptr = q;
  184.             status = a85d_finish(ccount, word, pw);
  185.             q = pw->ptr;
  186.             break;
  187.         }
  188.         else            /* syntax error or exception */
  189.         {    status = ERRC;
  190.             break;
  191.         }
  192.     }
  193.     pw->ptr = q;
  194.     if ( status == 0 && last )
  195.     {    if ( (int)(wlimit - q) < ccount - 1 )
  196.           status = 1;
  197.         else
  198.           status = a85d_finish(ccount, word, pw);
  199.     }
  200.     pr->ptr = p;
  201.     ss->odd = ccount;
  202.     ss->word = word;
  203.     return status;
  204. }
  205. /* Handle the end of input data. */
  206. private int
  207. a85d_finish(int ccount, ulong word, stream_cursor_write *pw)
  208. {    /* Assume there is enough room in the output buffer! */
  209.     byte *q = pw->ptr;
  210.     int status = EOFC;
  211.     switch ( ccount )
  212.     {
  213.     case 0:
  214.         break;
  215.     case 1:            /* syntax error */
  216.         status = ERRC;
  217.         break;
  218.     case 2:            /* 1 odd byte */
  219.         word = word * (85L*85*85) + 0xffffffL;
  220.         goto o1;
  221.     case 3:            /* 2 odd bytes */
  222.         word = word * (85L*85) + 0xffffL;
  223.         goto o2;
  224.     case 4:            /* 3 odd bytes */
  225.         word = word * 85 + 0xffL;
  226.         q[3] = (byte)(word >> 8);
  227. o2:        q[2] = (byte)(word >> 16);
  228. o1:        q[1] = (byte)(word >> 24);
  229.         q += ccount - 1;
  230.         pw->ptr = q;
  231.     }
  232.     return status;
  233. }
  234.  
  235. #undef ss
  236.  
  237. /* Stream template */
  238. const stream_template s_A85D_template =
  239. {    &st_A85D_state, s_A85D_init, s_A85D_process, 2, 4
  240. };
  241.  
  242. /* ------ ByteTranslateEncode/Decode ------ */
  243.  
  244. private_st_BT_state();
  245.  
  246. #define ss ((stream_BT_state *)st)
  247.  
  248. /* Process a buffer.  Note that the same code serves for both streams. */
  249.  
  250. private int
  251. s_BT_process(stream_state *st, stream_cursor_read *pr,
  252.   stream_cursor_write *pw, bool last)
  253. {    const byte *p = pr->ptr;
  254.     byte *q = pw->ptr;
  255.     uint rcount = pr->limit - p;
  256.     uint wcount = pw->limit - q;
  257.     uint count;
  258.     int status;
  259.  
  260.     if ( rcount <= wcount )
  261.       count = rcount, status = 0;
  262.     else
  263.       count = wcount, status = 1;
  264.  
  265.     while ( count-- )
  266.       *++q = ss->table[*++p];
  267.  
  268.     pr->ptr = p;
  269.     pw->ptr = q;
  270.     return status;
  271. }
  272.  
  273. #undef ss
  274.  
  275. /* Stream template */
  276.  
  277. const stream_template s_BT_template =
  278. {    &st_BT_state, NULL, s_BT_process, 1, 1
  279. };
  280.